ignore deps when installing via pip#557
Conversation
|
I was originally worried that having to work out the deps could itself be annoying for users. I'll merge it, but do you think there's a nice way to somehow make it toggleable, or if that's a good idea? |
ignore deps when installing via pip
|
It's difficult, cause pip just kinda sucks. :( No API (well, at least no stable documented API, I'm sure it's possible to just import stuff), you're stuck with the commands they give you. Ubuntu also ships an OLD version of pip which has additional issues with the I tried a number of things, including installing pip into hostpython and invoking it via targetpython etc. I even have a |
This avoids pip trying to overwrite packages which were installed via recipes (and sometimes throwing an error due to the package already existing in the destination, depending on pip version). This does mean you must specify every dependency package.